From: Stefan Kangas Date: Sun, 19 May 2024 08:43:59 +0000 (+0200) Subject: Add convenience binding for html-paragraph to mhtml-mode X-Git-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~14^2~18^2~1432 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=92cd24f405ca15e453238cae4f2e1922667220f0;p=emacs.git Add convenience binding for html-paragraph to mhtml-mode * lisp/textmodes/sgml-mode.el (html-mode-map): Bind 'C-c C-c p' to 'html-paragraph'. (Bug#70533) --- diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el index 0e15f7e6062..1f440ebf7d0 100644 --- a/lisp/textmodes/sgml-mode.el +++ b/lisp/textmodes/sgml-mode.el @@ -1820,6 +1820,7 @@ This takes effect when first loading the library.") (define-key map "\C-c\C-c#" #'html-id-anchor) (define-key map "\C-c\C-ci" #'html-image) (when html-quick-keys + (define-key map "\C-cp" #'html-paragraph) (define-key map "\C-c-" #'html-horizontal-rule) (define-key map "\C-cd" #'html-div) (define-key map "\C-co" #'html-ordered-list)